home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu086.dms / pu086.adf / include / signal.h < prev    next >
C/C++ Source or Header  |  1990-12-04  |  643b  |  33 lines

  1. /*
  2.   (c) 1990 S.Hawtin.
  3.   Permission is granted to copy this file provided
  4.    1) It is not used for commercial gain
  5.    2) This notice is included in all copies
  6.    3) Altered copies are marked as such
  7.  
  8.   No liability is accepted for the contents of the file.
  9.  
  10.   signal.h    within        Public Domain c.lib
  11.  
  12.  
  13.   Signal definitions for NorthC
  14. */
  15.  
  16. /* Only Abort and interrupt have any meaning */
  17. #define SIGABRT 0
  18. #define SIGFPE  1
  19. #define SIGILL  2
  20. #define SIGINT  3
  21. #define SIGSEGV 4
  22. #define SIGTERM 5
  23. #define _SIGMAX 6
  24.  
  25. #define SIG_DFL 0L
  26. #define SIG_IGN 1L
  27.  
  28. #define SIG_ERR 0L
  29.  
  30. extern int raise();
  31. typedef int sig_atomic_t;
  32. extern void (*signal())();
  33.